Render   A
last analyzed

Complexity

Total Complexity 8

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 8

8 Functions

Rating   Name   Duplication   Size   Complexity  
A addStyle 0 1 1
A removeElement 0 1 1
A createHtml 0 1 1
A changeContent 0 1 1
A newElement 0 1 1
A clearPage 0 1 1
A setAtribute 0 1 1
A registerDinamicPage 0 1 1
1
2
export class Render{
3
    newElement(renderElement:any,content:any,selectObject:any,classList:any,Id:any):void
4
    createHtml(elementTarget:any,content:any):void
5
    changeContent(id:any,content:any):void
6
    removeElement(element:any):void
7
    setAtribute(elementId:any,atribute:any,value:any):void
8
    addStyle(elementId:any,ruleCss:any):void
9
    registerDinamicPage(pageId:any):void
10
    clearPage():void
11
}